current quest is stored in cg_currentQuest
all quests that need to be done are stored in cg_quests
	when cg_quests reaches 0, the player is done with their quests.
	(Explanation on how this works see below)

########
#list of craftable items and their id's (alphabetical):
########

1: activator_rail
2: armor_stand
3: baked_potato
4: beetroot_soup
5: boat
6: book
7: bookshelf
8: bow
9: bread
10: bucket
11: cake
12: carrot_on_a_stick
13: chest
14: chest_minecart
15: clock
16: comparator
17: compass
18: cooked_beef
19: cooked_chicken
20: cooked_rabbit
21: daylight_detector
22: detector_rail
23: dispenser
24: dropper
25: fence
26: fence_gate
27: fermented_spider_eye
28: furnace_minecart
29: golden_carrot
30: golden_rail
31: hay_block
32: heavy_weighted_pressure_plate
33: hopper
34: iron_door
35: iron_trapdoor
36: item_frame
37: ladder
38: light_weighted_pressure_plate
39: lit_pumpkin
40: map
41: mushroom_stew
42: noteblock
43: observer
44: piston
45: pumpkin_pie
46: rabbit_stew
47: rail
48: repeater
49: shield
50: sign 
51: speckled_melon
52: torch
53: trapped_chest
54: tripwire_hook
55: wooden_door


######
# How to calculate the current quest from cg_quests
######

cg_quests stores up to 5 quests encoded like this:

5th quest id * 12'960'000 + 4th quest id * 216'000 + 3rd quest id * 3600 + 2nd quest id * 60 + 1st quest id

to encode and decode this easily ingame, use 60 as the base.
from any given number in cg_quests the current Quest is cg_quests%60 and the next quest is (cg_quests/60)%60

Example:

	The three quests to encode are map, cake and hopper, or 40, 11 and 33 respectively.
		
	Encoding
		
		We start with gc_quests = 0
		then we add the quest that has to be done last, the hopper: 0 + 33 = 33.
		Multiply that by 60: 	33 * 60 = 1980
		Add the second quest: 	1980 + 11 = 1991
		multiply by 60:			1991 * 60 = 119'460
		add the first quest: 	119460 + 40 = 119'500
		
		So the encoded quest number is 119500.
		
	Decoding
		To decode we go the other way around.
		first quest: 			119500 % 60 = 40
		second quest:			119500 / 60 = 1991.666666666 (since we're using integer division the result is 1991)
								1991 % 60	= 11
		third quest:			1991 / 60	= 33.183333 (again, the result is 33)
								33 % 60		= 33
		fourth quest:			33 / 60		= 0.55 (result = 0)
								0 -> there are no more quests -> player won